home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / FROMUTS / UNIXLIB37B / test / c / stdtest < prev    next >
Text File  |  1991-12-02  |  259b  |  16 lines

  1. #include <stdio.h>
  2. #include <string.h>
  3. #include <stdlib.h>
  4.  
  5. static char *h = "Hello World Hello World Hello World";
  6.  
  7. int main()
  8. {
  9. int l = strlen(h);
  10.  
  11. setvbuf(stdout,0,_IOFBF,16);
  12. fwrite(h,1,l,stdout); putchar('\n');
  13. fputs(h,stdout); putchar('\n');
  14. puts(h);
  15. }
  16.